body {
  margin: 0;
  font-family: "abc-repro", sans-serif;
}

/* Header */
header {
  background: transparent;
  z-index: 1000;
  width: 100%;
 
}

/* Logo behavior */
#logo {
  transition: all 0.4s ease;
}
#logo.hidden {
  opacity: 0;
  transform: translateY(-10px);
}
#logo.small {
  transform: scale(0.95);
  opacity: 1;
}

/* Right menu background */
.menu-container {
  background-color: #F4E4C5;
  /* border: 1px solid #7f011e;*/
  
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* Menu links */
.nav-link {
  color: #4b000b !important;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s;
}
.nav-link:hover {
  color: #800020 !important;
  animation: bounce 0.6s;
}

/* Contact button */
.contact-btn {
  background-color: #800020;
  color: #f8eddc !important;
  padding: 6px 18px;
  border-radius: 6px;
  transition: 0.3s;
}
.contact-btn:hover {
  background-color: #a83246;
  animation: bounce 0.6s;
}

/* --- MOBILE MENU --- */
.navbar-toggler {
  border: none;
  background: transparent !important;
  filter: invert(25%);
}

/* Hamburger icon styling (black lines) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: #F4E4C5;
  transition: right 0.4s ease;
  z-index: 2000;
  padding: 2rem;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .close-btn {
  font-size: 2rem;
  cursor: pointer;
  text-align: right;
  margin-bottom: 1.5rem;
  color: #800020;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
}
.mobile-menu ul li {
  margin-bottom: 1rem;
}
.mobile-menu ul li a {
  color: #4b000b;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-menu ul li a:hover {
  color: #800020;
  animation: bounce 0.6s;
}




/*Contact Us*/


/* SECTION TITLE */
.section-title {
  font-size: 4rem;
  font-weight: 700;
  color: #800020;
  position: relative;
  display: inline-block;
  font-family: "Awesome Serif", serif;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 8px;
}

.section-title::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #800020;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes bounceHover {
  0% { transform: translateY(0); }
  30% { transform: translateY(-20px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.section-title:hover {
  animation: bounceHover 0.8s ease-in-out;
  transform: scale(1.05);
}

/* ABOUT TEXT */
.about-text {
  max-width: 860px;
  margin: 20px auto 40px auto;
  text-align: center;
  font-family: "ABC Repro";
  font-size: 20px;
  font-weight: 400;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
  padding: 0 20px; /* Added left-right spacing */
}

/* ABOUT IMAGE */
.about-image {
  overflow: hidden;
  border-radius: 12px;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.3s, opacity 0.3s;
  margin-top: 60px;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* SECTION BASE */
section#about-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  
}

/* RESPONSIVE FIXES */
/*
@media (max-width: 768px) {
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .about-text {
    font-size: 16px;
    padding: 0 18px; 
  }

  .about-image {
    margin-top: 40px;
    padding: 0 18px;
  }
}
*/
/* Remove extra big gap between first & second section in mobile */
@media (max-width: 768px) {

  /* Reduce section padding */
  #about-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    min-height: auto !important;  /* remove forced 100vh height */
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  /* Reduce image top spacing */
  #about-section .about-image {
    margin-top: 20px !important;
    padding: 0 18px;
  }

  /* Reduce text spacing */
  #about-section .about-text {
    margin-bottom: 20px !important;
    font-size: 16px;
    padding: 0 24px;
  }
}




/*Contact Us End*/




/*Form*/

/* ===== CONTACT SECTION NEW ===== */

.contact-new-wrapper {
  padding-left: 120px;
  padding-right: 120px;
}

/* LEFT SIDE GRID (2 columns) */
.left-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 30px;
}

.left-title {
  font-family: "Awesome Serif", serif;
  font-size: 17px;
  color: #800020;
  margin-bottom: 6px;
}

.left-text {
  font-family: "abc-repro", sans-serif;
  font-size: 15px;
  color: #3a2a2a;
}

.left-link {
  color: #3a2a2a;
  text-decoration: underline;
}

.social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "abc-repro", sans-serif;
}

.social-list li {
  margin-bottom: 6px;
}
/* SOCIAL ICONS WITH IMAGES */
.social-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "abc-repro", sans-serif;
  font-size: 15px;
  color: #3a2a2a;
  transition: 0.3s ease;
}

/* IMAGE ICON STYLING */
.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.social-list li:hover {
  color: #7F011E;
  transform: translateX(4px);
}

.social-list li:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(10%) sepia(70%) saturate(4000%) hue-rotate(330deg) brightness(80%);
  transform: scale(1.1);
}


/* MAP */
.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  
}

/* RIGHT FORM */
.right-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-stroke {
  width: 100%;
  padding: 14px;
  border: 0.8px solid #7F011E;
  border-radius: 10px;
  background: transparent;
  font-family: "abc-repro", sans-serif;
}

.input-stroke::placeholder {
  color: rgba(0,0,0,0.5);
}


/* stop blue background on click */
.input-stroke,
.textarea-stroke {
  background-color: #f8eddc !important;
}

/* stop blue background on focus */
.input-stroke:focus,
.textarea-stroke:focus {
  background-color: #f8eddc !important;
  outline: none !important;
  box-shadow: none !important;
}

/* stop Chrome autofill blue/yellow */
input:-webkit-autofill,
textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px #f8eddc inset !important;
  -webkit-text-fill-color: #3a2a2a !important;
}










/* SOLID BUTTON (not pill) */
.btn-solid {
  background: #7F011E;
  color: #f8eddc;
  border: none;
  padding: 14px;
  border-radius: 10px; /* square-ish */
  width: 100%;
  font-family: "abc-repro", sans-serif;
  transition: 0.3s;
}

.btn-solid:hover {
  background: #560016;
}

/* ANIMATION */
.slide-left, .slide-right {
  opacity: 0;
  transform: translateX(0);
  transition: 0.7s ease;
}

.slide-left { transform: translateX(-40px); }
.slide-right { transform: translateX(40px); }

.reveal {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* MOBILE */
@media(max-width: 992px){
  .contact-new-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .left-grid {
    grid-template-columns: 1fr;
  }

  .btn-solid {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .map-wrap {
    margin-bottom: 30px; /* increase this value if needed */
  }
}



/*Form End*/


/*Footer*/

body {
  background-color: #f8eddc;
  font-family: 'ABC Repro', sans-serif !important;
  color: #3a2a2a;
}

.footer-section {
  background-color: #f8eddc;
}

.footer-line {
  width: 60%;
  border-top: 1px solid #3a2a2a;
  opacity: 0.6;
  margin-top: 15px;
}

/* Quote */
.footer-quote {
  font-family: 'Awesome Serif', serif;
  font-size: 1.6rem;
  color: #8b0000;
  line-height: 1.6;
  opacity: 0;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
  white-space: normal;
}

/* Hover Links */
.footer-link {
  color: #3a2a2a;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'ABC Repro', sans-serif;
}

.footer-link:hover {
  color: #a10000;
  transform: translateY(-2px);
}

/* Button */
.btn-danger {
  background-color: #a10000;
  border: none;
  transition: 0.3s ease;
}

.btn-danger:hover {
  background-color: #7a0000;
}

/* Footer Layout */
.footer-section .row {
  text-align: center;
}

.footer-section .row > .col-lg-4 {
  text-align: left; /* only the left column */
}
/* Add this at the bottom of your CSS */
.footer-section h5 {
  font-family: 'Awesome Serif', serif;
  font-weight: 600;
  color: #8b0000;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .footer-section .row .col-lg-3,
  .footer-section .row .col-lg-4 {
    text-align: left !important; /* desktop */
  }
}


/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
    padding: 50px 25px;
  }

  .footer-quote {
    font-size: 1.25rem;
    margin: 30px 10px;
    max-width: 90%;
  }

  .footer-section .row > .col-lg-4 {
    text-align: center; /* center again on mobile */
  }

  .footer-line {
    width: 85%;
  }
}
